* {
    cursor: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    background: #000000;
    /* height: 100vh;
    overflow: hidden; */
  }

  
.cursor-letter {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor-letter svg path,
.cursor-letter svg rect,
.cursor-letter svg polygon,
.cursor-letter svg polyline,
.cursor-letter svg line {
  fill: rgb(0, 0, 0);
  stroke: rgb(255, 255, 255);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  backdrop-filter: blur(20px); 
}
    


.form_btn_c {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Base button styles */
.cta-btn_c {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: #facc15;
  border: 2px solid #facc15;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 10px #8a8a8a;
  justify-content: center;
  width: 50%;
  text-align: center;
}

.cta-btn_c:hover {
  background-color: #facc15;
  color: black;
  box-shadow: 0 0 20px #facc15, 0 0 30px #facc15;
}

@media (max-width: 768px) {
  .cta-btn_c {
    width: 80%;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cta-btn_c {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  .cursor-letter {
    display: none;
  }
}



/* form style */

.form-cl{
    padding-top: 20px;
    padding-bottom: 120px;
    border-bottom-width: 120px;
    background: #000000,;
}

  form {
    margin-top: 100px;
    margin-left: 415px;
    padding: 20px;
    padding-left: 20px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid  rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(55px);
    width: 700px;
    overflow: hidden;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thread {
    text-align: center;
    font-size: 7002px;
    font-style: normal;
    font-weight: 800;
    font-family: "Londrina Outline", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 36px;
    color: #fff;
    text-transform: uppercase;
}

label {
    display: block;
    margin-top: 10px;
    color: #c9d1d9;
}

.form-cl :is(input, select, textarea, button) {
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #30363d;
    border-radius: 5px;
    background-color: #0d1117;
    color: #c9d1d9;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #888;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #9b59b6;
    box-shadow: 0 0 8px rgba(155, 89, 182, 0.6);
}

textarea {
    resize: none;
    /* Empêche le redimensionnement des zones de texte */
}



.animated-button {
    position: relative;
    z-index: 2;
    border-radius: 999vw;
    background: transparent;
    pointer-events: none;
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
  }
  
  .animated-button button:hover {
    background: linear-gradient(
      135deg,
      rgb(255, 255, 255)
    ) !important;
    box-shadow:
      0 0.25em 0.125em -0.125em rgba(255, 255, 0, 0.5),
  }

  .animated-button, .button-wrap * {
    text-decoration: none;
  }
  
  .animated-button button:hover span {
    color: #000 !important;
  }
  
  .animated-button button {
    --border-width: clamp(1px, 0.0625em, 4px);
    all: unset;
    cursor: pointer;
    position: relative;
    pointer-events: auto;
    z-index: 3;
    background: linear-gradient(-75deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.05));
    border-radius: 999vw;
    box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
      inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
      0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2),
      0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
  }
  
  .animated-button button span {
    position: relative;
    display: block;
    user-select: none;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.05em;
    font-weight: 500;
    font-size: 1em;
    color: rgb(0, 0, 0);
    text-shadow: 0em 0.25em 0.05em rgba(0, 0, 0, 0.1);
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    padding-inline: 1.5em;
    padding-block: 0.875em;
    color: #fff;
  }


@media only screen and (min-width:900px) and (max-width:1024px) {
    form {
        margin-left: 180px;
    }
}


@media screen and (max-width:600px) {
    form {
        width: auto;
        margin-top: 50px;
        margin-left: 35px;
        margin-right: 35px;
    }
}

.h-1{
    margin-top: 150px;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  margin-top: 150px;
}

.hero-headline {
    background: radial-gradient(#eff1ff, #000);
    background-size: 100% 200%;
    background-position: 50% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-size: 3.9rem
}


